Tables [dbo].[Tagged_Page_Interest_Category]
Properties
PropertyValue
Row Count0
Created10:31:40 AM Tuesday, March 02, 2010
Last Modified11:40:08 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_Tagged_Page_Interest_Category: ContentID\InterestCategoryIDForeign Keys FK_TaggedPageInterestCategory_Content: [dbo].[Content].ContentIDContentIDnumeric(18,0)9
No
Cluster Primary Key PK_Tagged_Page_Interest_Category: ContentID\InterestCategoryIDForeign Keys FK_TaggedPageInterestCategory_InterestCategory: [dbo].[Interest_Category].InterestCategoryIDInterestCategoryIDnumeric(18,0)9
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_Tagged_Page_Interest_Category: ContentID\InterestCategoryIDPK_Tagged_Page_Interest_CategoryContentID, InterestCategoryID
Yes
Foreign Keys Foreign Keys
NameColumns
FK_TaggedPageInterestCategory_ContentContentID->[dbo].[Content].[ContentID]
FK_TaggedPageInterestCategory_InterestCategoryInterestCategoryID->[dbo].[Interest_Category].[InterestCategoryID]
Permissions
TypeActionOwning Principal
GrantDeleteIMIS
GrantInsertIMIS
GrantReferencesIMIS
GrantSelectIMIS
GrantUpdateIMIS
SQL Script
CREATE TABLE [dbo].[Tagged_Page_Interest_Category]
(
[ContentID] [numeric] (18, 0) NOT NULL,
[InterestCategoryID] [numeric] (18, 0) NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[Tagged_Page_Interest_Category] ADD CONSTRAINT [PK_Tagged_Page_Interest_Category] PRIMARY KEY CLUSTERED ([ContentID], [InterestCategoryID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Tagged_Page_Interest_Category] ADD CONSTRAINT [FK_TaggedPageInterestCategory_Content] FOREIGN KEY ([ContentID]) REFERENCES [dbo].[Content] ([ContentID])
GO
ALTER TABLE [dbo].[Tagged_Page_Interest_Category] ADD CONSTRAINT [FK_TaggedPageInterestCategory_InterestCategory] FOREIGN KEY ([InterestCategoryID]) REFERENCES [dbo].[Interest_Category] ([InterestCategoryID])
GO
GRANT REFERENCES ON  [dbo].[Tagged_Page_Interest_Category] TO [IMIS]
GRANT SELECT ON  [dbo].[Tagged_Page_Interest_Category] TO [IMIS]
GRANT INSERT ON  [dbo].[Tagged_Page_Interest_Category] TO [IMIS]
GRANT DELETE ON  [dbo].[Tagged_Page_Interest_Category] TO [IMIS]
GRANT UPDATE ON  [dbo].[Tagged_Page_Interest_Category] TO [IMIS]
GO
Uses
Used By